func github.com/golang/protobuf/proto.isQuote

6 uses

	github.com/golang/protobuf/proto (current package)
		text_decode.go#L440: 		if isQuote(tok.value[0]) {
		text_decode.go#L444: 		if isQuote(tok.value[0]) {
		text_decode.go#L498: 	if len(tok.value) > 2 && isQuote(tok.value[0]) && tok.value[len(tok.value)-1] == tok.value[0] {
		text_decode.go#L628: 	} else if len(p.cur.value) > 0 && isQuote(p.cur.value[0]) {
		text_decode.go#L634: 			if p.done || !isQuote(p.s[0]) {
		text_decode.go#L795: func isQuote(c byte) bool {